11. Calculating Area Under the Curve [Solution]
Calculating Area Under the Curve Solution
from scipy.stats import norm
def gaussian_probability(mean, stdev, x_low, x_high):
return norm(loc = mean, scale = stdev).cdf(x_high) - norm(loc = mean, scale = stdev).cdf(x_low)